From 10c548179cb75545e254e43adb046a392db35e47 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Sun, 3 Apr 2005 08:30:05 +0000 Subject: [PATCH] Don't need existence check for the article, it's implied --- includes/SpecialRecentchanges.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/includes/SpecialRecentchanges.php b/includes/SpecialRecentchanges.php index 470489ab7b..5af35a4081 100644 --- a/includes/SpecialRecentchanges.php +++ b/includes/SpecialRecentchanges.php @@ -132,10 +132,6 @@ function wfSpecialRecentchanges( $par ) { $batch = new LinkBatch; while( $row = $dbr->fetchObject( $res ) ){ $rows[] = $row; - - // Title - $batch->add( $row->rc_namespace, $row->rc_title ); - // User page link $title = Title::makeTitleSafe( NS_USER, $row->rc_user_text ); $batch->addObj( $title ); -- 2.20.1